home *** CD-ROM | disk | FTP | other *** search
- /*
- * $Id: system_headers.h,v 1.12 2001/06/26 11:29:52 olsen Exp $
- *
- * :ts=4
- *
- * SMB file system wrapper for AmigaOS, using the AmiTCP V3 API
- *
- * Copyright (C) 2000-2001 by Olaf `Olsen' Barthel <olsen@sourcery.han.de>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
- */
-
- #ifndef _SYSTEM_HEADERS_H
- #define _SYSTEM_HEADERS_H 1
-
- /*****************************************************************************/
-
- #define NULL ((APTR)0L)
- #include <exec/types.h>
-
- /*****************************************************************************/
-
- #define byte IGNORE_THIS
-
- /*****************************************************************************/
-
- #define USE_BUILTIN_MATH 1
- #include <string.h>
-
- /*****************************************************************************/
-
- #include <workbench/workbench.h>
- #include <workbench/startup.h>
-
- #include <dos/dosextens.h>
- #include <dos/dosasl.h>
- #include <dos/dostags.h>
- #include <dos/filehandler.h>
- #include <dos/rdargs.h>
- #include <dos/exall.h>
-
- #include <exec/memory.h>
-
- #include <devices/timer.h>
- #include <devices/inputevent.h>
- #include <devices/input.h>
-
- #include <libraries/locale.h>
-
- #include <bsdsocket/socketbasetags.h>
-
- #include <utility/date.h>
- #include <utility/tagitem.h>
-
- #include <clib/exec_protos.h>
- #include <clib/dos_protos.h>
- #include <clib/intuition_protos.h>
- #include <clib/socket_protos.h>
- #include <clib/utility_protos.h>
- #include <clib/locale_protos.h>
- #include <clib/timer_protos.h>
- #include <clib/icon_protos.h>
- #include <clib/alib_protos.h>
-
- #include <pragmas/exec_sysbase_pragmas.h>
- #include <pragmas/dos_pragmas.h>
- #include <pragmas/intuition_pragmas.h>
- #include <pragmas/socket_pragmas.h>
- #include <pragmas/utility_pragmas.h>
- #include <pragmas/locale_pragmas.h>
- #include <pragmas/timer_pragmas.h>
- #include <pragmas/icon_pragmas.h>
-
- /*****************************************************************************/
-
- #include <sys/types.h>
- #include <sys/socket.h>
- #include <sys/param.h>
- #include <sys/ioctl.h>
- #include <sys/stat.h>
-
- #include <time.h>
- #include <stdio.h>
- #include <errno.h>
- #include <fcntl.h>
- #include <signal.h>
- #include <stdarg.h>
- #include <stdlib.h>
- #include <stddef.h>
- #include <ctype.h>
-
- #ifdef __SASC
- #include <dos.h>
- #endif /* __SASC */
-
- #include <netinet/ip.h>
- #include <netinet/tcp.h>
-
- #include <net/if.h>
- #include <unistd.h>
- #include <netdb.h>
-
- /*****************************************************************************/
-
- #undef byte
-
- /*****************************************************************************/
-
- #endif /* _SYSTEM_HEADERS_H */
-